home *** CD-ROM | disk | FTP | other *** search
/ The Very Best of Atari Inside / The Very Best of Atari Inside 1.iso / mint / mntlb20 / lib / getdtabl.c < prev    next >
C/C++ Source or Header  |  1990-11-10  |  157b  |  14 lines

  1. #include <stdio.h>
  2. #include <mintbind.h>
  3.  
  4. extern int __mint;
  5.  
  6. int
  7. getdtablesize()
  8. {
  9.     if (__mint < 7)
  10.         return FOPEN_MAX;
  11.  
  12.     return Sysconf(2);
  13. }
  14.